home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / ThreadRunn60422382002.psc / BGTRDemo / DBWorks DLL / Modules / modMain.bas < prev    next >
Encoding:
BASIC Source File  |  2002-03-06  |  265 b   |  14 lines

  1. Attribute VB_Name = "modMain"
  2. Option Explicit
  3.  
  4.  
  5. 'Sub Main is executed when the DLL loads and simply initializes
  6. 'the default no data byte array one time for the life of the DLL
  7.  
  8. Sub Main()
  9.     ReDim g_arNoData(0)
  10.     g_arNoData(0) = BYTE_OFF
  11. End Sub
  12.  
  13.  
  14.